home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
converr.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
649b
|
19 lines
/* RCSVER $Id: converr.sql,v 1.1 1999-03-01 13:15:58-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: converr.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the converr table. This table contains all the
* possible errors that can occur during the probed data
* conversion.
* Changes:
************************************************************************* */
CREATE TABLE converr
(
err_type NUMBER(38),
descr VARCHAR2(80),
CONSTRAINT pk_converr PRIMARY KEY (err_type)
);